Task
Define a function bitwise_add that takes two parameters:
When called, the function should return the sum of the two input parameters.
Caveat:
- The function should not make use of any arithmetic operators.
Note: if you’re not familiar with binary numbers you’ll need to learn the basics before attempting this question. Google something along the lines of “introduction to binary numbers”. You should also learn about logic gates.