fork download
  1. #include <iostream> /* C++ iostream C++98/11 */
  2. #include <string> /* C++ strings C++98/11 */
  3. #include <boost/regex.hpp> /* RegEx Boost */
  4.  
  5. int main() {
  6.  
  7. int a=3; //0011
  8. int b=1; //0001
  9. std::cout <<(a&b);
  10. }
  11.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
1