fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a = 10;
  6. int b = 7;
  7. a = a | b;
  8.  
  9. b = b & 5;
  10.  
  11. int c = ~a;
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 5304KB
stdin
add $s0, $t2, $s0
stdout
Standard output is empty