#include <stdio.h>

int main(void) {
	// your code goes here
	unsigned short a=1,b=3;
 
	printf("a & b is %d\n",a&b);
	printf("a|b is %d\n",a|b);
	printf("a^b is %d\n",a^b);

	return 0;
}
