fork download
  1. x, y, z = 3, 2, 1
  2. z, y, x = x, y, z
  3. print(x,y,z)
Success #stdin #stdout 0.02s 9128KB
stdin
Standard input is empty
stdout
1 2 3