#include <stdio.h>

int main() {
    int B, C;
    scanf("%d", &B);
    scanf("%d", &C);

    if((B+C)%2==0){
        printf("Bino");
    }
    else{
        printf("Cino");
    }
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: