using System;
public class Program
{
public static int CountSetBits(int inputValue)
// Fill in this function so that it returns a count of the
// number of 1-bits in the binary representation of inputValue
return 0;
}
public static void Main()
Console.WriteLine("CountSetBits(7)=" + CountSetBits(7));