fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. int main(void) {
  6. #define ATMTA
  7.  
  8. #ifdef ATMTA
  9. printf("YOBA1\n");
  10. printf("YOBA1\n");
  11. #endif
  12.  
  13. #undef ATMTA
  14.  
  15. #ifdef ATMTA
  16. printf("YOBA2\n");
  17. printf("YOBA2\n");
  18. #endif
  19. return 0;
  20. }
Success #stdin #stdout 0s 1832KB
stdin
stdout
YOBA1
YOBA1