fork download
  1. b = 7
  2. x = 5
  3. y = x * 15
  4. print(b, x, y)
  5. a = 3 * b + 9
  6. x = y + 3
  7. y = x
  8. print (b, x, a, y, end=" ")
  9. a = 5 * b
  10. print (a)
Success #stdin #stdout 0.02s 5852KB
stdin
Standard input is empty
stdout
7 5 75
7 78 30 78 35