The modulo operation can also be done by repetitive subtraction or addition. In this challenge, you're going to create a function that mimics such an operation and returns the modulo of the two given numbers by recursively subtracting or adding them.
modulo(100, 25) ➞ 0
modulo(-51, -4) ➞ -3
modulo(3, 9) ➞ 3
modulo(-21, 5) ➞ -1
# -1 instead of 4 (which is what actually Python
# yields with the modulo operator %)
modulo(1024, 7) ➞ 2
modulo(273, -6) ➞ 3