fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int a = 3;
  6. printf("%d", (a | 2));
  7.  
  8. // if (a | 2) {
  9. // printf("Yes");
  10. // } else {
  11. // printf("No");
  12. // }
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
3