fork download
  1.  
  2. a = 75
  3. b = 25
  4.  
  5.  
  6. wynik = a // b
  7.  
  8.  
  9. reszta = a % b
  10.  
  11. print(b // a)
  12.  
  13. print(b % a)
  14.  
Success #stdin #stdout 0.09s 14168KB
stdin
Standard input is empty
stdout
0
25