fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a;
  5. scanf("%d", &a);
  6. if (a == 1)
  7. a = 0;
  8. else if (a == 0)
  9. a = 1;
  10. printf("%d", a);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
1