Yea, obviously the operator can only output one thing which is the modulus for the mod operator (%). If you want the division result, use the divide operator. If you are working with integers, that would be:
int a = 139;
int b = 2;
int mod, div;
mod = a % b;
div = a / b;
If a and b are floating point numbers, you would want to put a floor call into the division statement, like:
div = floor (a / b);
Chris