Using IDLE,
Write a function that takes an integer, cuts it in half twice, and returns the result.
Do this WITHOUT using “ / “ or “ * ”

Example:
print(halfTwice(20))
>>> 5