#include<stdio.h>

int main()
{
int a[7] = {1,2,3,4,5,6,7};
int c;

c=a[0]^a[3];
printf("%d xor %d is %d",a[0], a[3], c);

return 0;
}