Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
#include <bits/stdc++.h> using namespace std; int main() { bitset<4> bs(string("1000")); if (bs.any()) cout << "yes"; else cout << "no"; return 0; } /* run: yes */