#include <stdio.h>
int main()
{
int n,m;
int c,d,e;
scanf("%d %d",&n,&m);
c=n&m; // Bitwise and
printf("%d\n",c);
scanf("%d %d",&n,&m);
d=n|m; // Bitwise or
printf("%d\n",d);
scanf("%d %d",&n,&m);
e=n^m; // Bitwise xor
printf("%d\n",e);
return 0;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.