fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int p;
  6. bool a = true;
  7. bool b = false;
  8. int x = 10;
  9. int y = 5;
  10. p = (x & y);
  11. cout << p;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty