Given two non-negative integers src and dst, return dst with every bit that is set in src also set (all set bits of src are copied into dst).
Input: A JSON object {"src": <non-negative integer>, "dst": <non-negative integer>}.
Output: Return dst OR src.
Input: {"src":5,"dst":8}
Output: 13
Explanation: 1000 | 0101 = 1101 = 13.Input: {"src":0,"dst":12}
Output: 12
Explanation: No bits to copy, dst stays 12.0 <= src, dst <= 10^12