fork download
  1. #include <stdio.h>
  2.  
  3. int a = 0;
  4. int b = 1;
  5.  
  6. int get_status(void)
  7. {
  8. return (a | b);
  9. }
  10.  
  11. int main(void) {
  12. // your code goes here
  13.  
  14. printf("%d\n", get_status());
  15.  
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5500KB
stdin
Standard input is empty
stdout
1