fork download
  1. a, b, c, d = range(1, 5)
  2.  
  3. result = (
  4. # First is 1
  5. a * # Then goes 2, result is 2 now
  6. b * # And then 3, result is 6
  7. c * # And 4, result should be 24
  8. d
  9. )
  10.  
  11. print(result)
  12.  
Success #stdin #stdout 0.01s 7132KB
stdin
Standard input is empty
stdout
24