#include <stdio.h>

int main() {
    int a, b;
    while (scanf("%d %d", &a, &b) != EOF) { // 注意 while 处理多个 case
        // 64 位输出请用 printf("%lld") to 
       int c = 0;
       int count = 0;
       c = a ^ b;
       while(c)
       {
        c = c & (c - 1);
        count++;
       }
       printf("%d\n",count);
    }
    return 0;
}