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