#include <stdio.h>

main()
{
char x,y;

x=7;
y=6;
x=x&y;
y=x|16;
printf("%d %d\n",x,y);
}

