Easy
Given an integer n, return the number of steps to reduce it to zero. In one step, if the number is even divide it by two, otherwise subtract one.
n
Input: n = 14 Output: 6
Input: n = 8 Output: 4
Input: n = 0 Output: 0