fork download
  1. print("---------START--------")
  2.  
  3. a = 13
  4.  
  5. b = 5
  6. suma = a % b
  7. print(suma) ## / * // %
  8.  
  9. print("---------KONIEC-------")
Success #stdin #stdout 0.05s 63244KB
stdin
Standard input is empty
stdout
---------START--------
3
---------KONIEC-------