fork download
  1. a = 5
  2. b = 10
  3. print("cum = ",a+b)
  4. print("cub = ",a-b)
  5. print("div = ",a*b)
  6. print("sqr = ",a/b)
  7. print("kdo = ",a%b)
Success #stdin #stdout 0.07s 14060KB
stdin
Standard input is empty
stdout
cum =  15
cub =  -5
div =  50
sqr =  0.5
kdo =  5