// Number Complement — EASY
// Category: math
The **complement** of an integer is the integer you get when you flip all the `0`s to `1`s and all the `1`s to `0`s in its binary representation.
Given an integer `num`, return its complement.
Example: num = 5
Output: 2