fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int i;
  5. scanf("%d", &i);
  6. if (i > 0)
  7. printf("%d\n", i);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5296KB
stdin
-10
stdout
Standard output is empty