41

int main()
{
int i=1,j=2,k=3;
i=i^j&j<<1|++k>>i;
printf("%d",i);
}


Output:


3

Related Posts