fork download
  1. x=int(input())
  2. y=int(input())
  3. c=x//y
  4. r=x%y
  5. print(x,":",y,"=",c,"r",r)
Success #stdin #stdout 0.09s 14136KB
stdin
13
4

stdout
13 : 4 = 3 r 1