fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. enum type: bool{
  5.  
  6. a = 1,
  7. b = 0
  8.  
  9. };
  10.  
  11. int main() {
  12.  
  13. int c = a|b;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty