fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int foo( int i1, int i2, int i3 ) {
  5. return 20 + abs(i1^i2^i3) %5;
  6. }
  7.  
  8. int main(void) {
  9. printf("%i\n",foo(0,0,-2147483648));
  10. return 0;
  11. }
  12.  
  13.  
  14.  
Success #stdin #stdout 0s 2296KB
stdin
Standard input is empty
stdout
17