package correct
// Function that return the number of active bits in the number passed as the argument
func ActiveBits(n int) (total int) {
for ; n > 1; n = n / 2 {
total += n % 2
}
total += n
return