题目链接:https://ac.nowcoder.com/acm/contest/331/J
题目大意:

就是简单的打表找规律

然而:

if(i+j==i|j)
{
    ans++;
}
但是==的优先级>|
正确的写法:
if(i+j==(i|j))
{
    ans++;
}