fork download
  1. a = 10 / 3
  2. b = 10 % 3
  3. c = 10 // 3
  4.  
  5. print(a, b, c, sep=', ')
  6.  
  7.  
Success #stdin #stdout 0.04s 9624KB
stdin
8
stdout
3.3333333333333335, 1, 3