fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <string.h>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. int a = 1;
  10. int b = 2;
  11.  
  12. int c = a & b;
  13. std::cout << c;
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty