Math.mod = function mod(a, b) { return (a % b + b) % b; };
Math.mod = function mod(a, b) { return (a + b) % b; };