fork download
  1. x=5
  2. y=10
  3. z=15
  4. print("sum =",x+y+z)
  5. print("sub =",x-y-z)
  6. print("malti =",x*y*z)
  7. print("div =",x/y/z)
  8. print("% =",x%y%z)
  9. print("sqr =",x**2)
  10. print("sqr =",y**2)
  11. print("sqr =",z**2)
  12. print("triple =",x**3)
  13. print("triple =",y**3)
  14. print("triple =",z**3)
  15. print(x<y<z)
Success #stdin #stdout 0.08s 14096KB
stdin
Standard input is empty
stdout
sum = 30
sub = -20
malti = 750
div = 0.03333333333333333
% = 5
sqr = 25
sqr = 100
sqr = 225
triple = 125
triple = 1000
triple = 3375
True