Create a function that subtracts one positive integer from another, without using any arithmetic operators such as -, %, /, +, etc.
-
%
/
+
my_sub(5, 9) ➞ 4 my_sub(10, 30) ➞ 20 my_sub(0, 0) ➞ 0
-1
<<
|
~
&