• + 0 comments
     long c=n;
    for(long i =0; i<32; i++ )
        c^=1<<i;
    if (c&(1<<1))
        c|=1<<1;
    else
        c&=~(1<<1);
    

    return c+4294967296;