aller divmod
func divMod(x,y int) (int, int) {
return x / y, x % y
}
Mackerel
func divMod(x,y int) (int, int) {
return x / y, x % y
}