fork download
  1. # your code goes here
  2.  
  3. a = 3
  4. b = 5
  5. c = 9
  6.  
  7. print (a, b, c)
  8. a, b = b, c
  9. print (a, b, c)
  10.  
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
3 5 9
5 9 9