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