#include <stdio.h>

int main() {
        unsigned short int a, b, c;
        a = 6;
        b = 3;
        c = a | b;

        printf("%u\n", c);
}
