Contact: aviboots(AT)netvision.net.il
40,758 questions
53,129 answers
573 users
#include <bits/stdc++.h> using namespace std; int main() { bitset<4> bs(string("0000")); if (bs.none()) cout << "yes"; else cout << "no"; return 0; } /* run: yes */