fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a, b, x;
  6. scanf("%d %d", &a, &b);
  7. x = a > b;
  8. printf("%d", x);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 1680KB
stdin
2 5
stdout
Standard output is empty