I need a function which gets two Ints (a and b) and returns A/B as Int. I am sure that A/B will alw
Int
a
b
A/B
Why not just use quot?
quot
quot a b
is the integer quotient of integers a and b truncated towards zero.