class Bits
{
	public static void main (String[] args) throws java.lang.Exception
	{
		System.out.println( Integer.bitCount(6) );
		
		System.out.println( Integer.bitCount(-6) );
	}
}