#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); auto N = [&](int a,int b) -> int { if(a&b) return 0; else return 1; }; for(int i=0; i<2; i++) for(int k=0; k<2; k++) for(int l=0; l<2; l++){ if(N(i,N(k,l)) != N(N(i,k),l)){cout << i << " " << k << " " << l << endl; return 0;} } }