fork download
  1. a=int(input())
  2. b=int(input())
  3. print(a // b ,"r", a % b)
Success #stdin #stdout 0.01s 7176KB
stdin
4
5
stdout
(0, 'r', 4)