plus equals OR by Tyler F

#include <iostream>\x0d
int main(){for(int x=0;x<128;x++)for(int y = 0;y<128;y++)if(x+y==(x|y))std::cout<<x<<' '<<y<<':'<<x+y<<std::endl;}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page