fork download
  1. a = 10
  2. b = 20
  3. c = 30
  4. a = b + c
  5. b = a + c
  6. c = a + b
  7. print(a, b, c)
  8.  
  9.  
Success #stdin #stdout 0.04s 9644KB
stdin
8
stdout
50 80 130