fork download
  1. x=5
  2. y=10
  3. z=15
  4. w=20
  5. print(x+y)
  6. print(y-x)
  7.  
  8. print(x/y)
  9. print(z+w)
  10. print(w-z)
  11.  
  12. print(w/z)
Success #stdin #stdout 0.02s 9240KB
stdin
Standard input is empty
stdout
15
5
0.5
35
5
1.3333333333333333